diff options
Diffstat (limited to 'app/[lng]/evcp/data-room/[projectId]/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/data-room/[projectId]/page.tsx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/[lng]/evcp/data-room/[projectId]/page.tsx b/app/[lng]/evcp/data-room/[projectId]/page.tsx new file mode 100644 index 00000000..d54a8cab --- /dev/null +++ b/app/[lng]/evcp/data-room/[projectId]/page.tsx @@ -0,0 +1,10 @@ +// app/projects/[projectId]/page.tsx +import { ProjectDashboard } from '@/components/project/ProjectDashboard'; + +export default function ProjectPage({ + params, +}: { + params: { projectId: string }; +}) { + return <ProjectDashboard projectId={params.projectId} />; +} |
